home *** CD-ROM | disk | FTP | other *** search
/ CyberMycha 2008 January / Cybermycha 1_2008.iso / Data.cab / _E66CFA77C7074CF98084C5616D31B339 < prev    next >
Encoding:
Text File  |  2004-03-17  |  1.0 KB  |  53 lines

  1. shader()
  2. {
  3.     cull("none")
  4.     sortweight("sprite")
  5.  
  6.     pass()
  7.     {
  8.         pixelshader("B&WTV.psh")
  9.         
  10.         tmu()
  11.         {
  12.             texture()
  13.             {
  14.                 mapchannel(0)
  15.                 usermap(0)
  16.  
  17.                 addressfunc("clamp", "clamp", "clamp")
  18.                 filtering("linear_no_mip")
  19.             }
  20.         }
  21.  
  22.         tmu()
  23.         {
  24.             TexMod("scale", "const", 1, 0, 0, "const", 240, 0, 0)
  25.             TexMod("translate", "none", 0, 0, 0, "lin", 0.5, 25, 0.5)
  26.             texture()
  27.             {
  28.                 mapchannel(0)
  29.                 image("Interlace.dds")
  30.                 filtering("linear_no_mip")
  31.             }
  32.         }        
  33.  
  34.         tmu()
  35.         {
  36.             texture()
  37.             {
  38.                 mapchannel(0)
  39.                 image("TVFrame.dds")
  40.                 filtering("linear_no_mip")
  41.             }
  42.         }
  43.  
  44.             
  45.         tfactor(1,1,1,1)
  46.         colorgen("tfactor", "none", 0, 0, 0, "sin", 0.9, 64, 0.1)
  47.  
  48.         depthfunc("always", 0)
  49.         nofog()
  50.     }
  51. }
  52.  
  53.